home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevtfnx.c < prev    next >
C/C++ Source or Header  |  1996-04-09  |  5KB  |  187 lines

  1. /* Copyright (C) 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevtfnx.c */
  20. /* 12-bit & 24-bit RGB uncompressed TIFF driver */
  21. #include "gdevprn.h"
  22. #include "gdevtifs.h"
  23.  
  24. /*
  25.  * Thanks to Alan Barclay <alan@escribe.co.uk> for donating the original
  26.  * version of this code to Ghostscript.
  27.  */
  28.  
  29. /* ------ The device descriptors ------ */
  30.  
  31. /* Default X and Y resolution */
  32. #define X_DPI 72
  33. #define Y_DPI 72
  34.  
  35. typedef struct gx_device_tiff_s {
  36.     gx_device_common;
  37.     gx_prn_device_common;
  38.     gdev_tiff_state tiff;
  39. } gx_device_tiff;
  40.  
  41. private dev_proc_print_page(tiff12_print_page);
  42. private dev_proc_print_page(tiff24_print_page);
  43.  
  44. private gx_device_procs tiff12_procs =
  45.   prn_color_procs(gdev_prn_open, gdev_prn_output_page, gdev_prn_close,
  46.           gx_default_rgb_map_rgb_color, gx_default_rgb_map_color_rgb);
  47. private gx_device_procs tiff24_procs =
  48.   prn_color_procs(gdev_prn_open, gdev_prn_output_page, gdev_prn_close,
  49.           gx_default_rgb_map_rgb_color, gx_default_rgb_map_color_rgb);
  50.  
  51. gx_device_printer far_data gs_tiff12nc_device =
  52. { prn_device_std_body(gx_device_tiff, tiff12_procs, "tiff12nc",
  53.               DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
  54.               X_DPI, Y_DPI,
  55.               0, 0, 0, 0,
  56.               24, tiff12_print_page)
  57. };
  58.  
  59. gx_device_printer far_data gs_tiff24nc_device =
  60. { prn_device_std_body(gx_device_tiff, tiff24_procs, "tiff24nc",
  61.               DEFAULT_WIDTH_10THS, DEFAULT_HEIGHT_10THS,
  62.               X_DPI, Y_DPI,
  63.               0, 0, 0, 0,
  64.               24, tiff24_print_page)
  65. };
  66.  
  67. /* ------ Private definitions ------ */
  68.  
  69. /* Define our TIFF directory - sorted by tag number */
  70. typedef struct tiff_rgb_directory_s {
  71.     TIFF_dir_entry    BitsPerSample;
  72.     TIFF_dir_entry    Compression;
  73.     TIFF_dir_entry    Photometric;
  74.     TIFF_dir_entry    FillOrder;
  75.     TIFF_dir_entry    SamplesPerPixel;
  76. } tiff_rgb_directory;
  77. typedef struct tiff_rgb_values_s {
  78.     TIFF_ushort bps[3];
  79. } tiff_rgb_values;
  80.  
  81. private const tiff_rgb_directory far_data dir_rgb_template = {
  82.     /* C's ridiculous rules about & and arrays require bps[0] here: */
  83.     { TIFFTAG_BitsPerSample, TIFF_SHORT | TIFF_INDIRECT, 3, offset_of(tiff_rgb_values, bps[0]) },
  84.     { TIFFTAG_Compression,    TIFF_SHORT, 1, Compression_none },
  85.     { TIFFTAG_Photometric,    TIFF_SHORT, 1, Photometric_RGB },
  86.     { TIFFTAG_FillOrder,    TIFF_SHORT, 1, FillOrder_MSB2LSB },
  87.     { TIFFTAG_SamplesPerPixel, TIFF_SHORT, 1, 3 },
  88. };
  89.  
  90. private const tiff_rgb_values val_12_template = {
  91.     { 4, 4, 4 }
  92. };
  93.  
  94. private const tiff_rgb_values val_24_template = {
  95.     { 8, 8, 8 }
  96. };
  97.  
  98. /* ------ Private functions ------ */
  99.  
  100. #define tfdev ((gx_device_tiff *)pdev)
  101.  
  102. private int
  103. tiff12_print_page( gx_device_printer *pdev, FILE *file )
  104. {    int code;
  105.  
  106.     /* Write the page directory. */
  107.     code = gdev_tiff_begin_page(pdev, &tfdev->tiff, file,
  108.             (const TIFF_dir_entry *)&dir_rgb_template,
  109.             sizeof(dir_rgb_template) / sizeof(TIFF_dir_entry),
  110.             (const byte *)&val_12_template,
  111.             sizeof(val_12_template));
  112.     if ( code < 0 )
  113.       return code;
  114.  
  115.     /* Write the page data. */
  116.     {
  117.         int y;
  118.         int raster = gdev_prn_raster( pdev );
  119.         byte *line = (byte *)gs_malloc( raster, 1, "tiff12_print_page" );
  120.         byte *row;
  121.  
  122.         if ( line == 0 )
  123.           return_error( gs_error_VMerror );
  124.  
  125.         for ( y = 0; y < pdev->height; ++y )
  126.           {    const byte *src;
  127.             byte *dest;
  128.             int x;
  129.  
  130.             code = gdev_prn_get_bits( pdev, y, line, &row );
  131.             if ( code < 0 )
  132.               break;
  133.  
  134.             for ( src = row, dest = line, x = 0; x < raster;
  135.                   src += 6, dest += 3, x += 6
  136.                 )
  137.               {
  138.                 dest[0] = (src[0] & 0xf0) | (src[1] >> 4);
  139.                 dest[1] = (src[2] & 0xf0) | (src[3] >> 4);
  140.                 dest[2] = (src[4] & 0xf0) | (src[5] >> 4);
  141.               }
  142.             fwrite( line, 1, dest - line, file );
  143.           }
  144.  
  145.         gdev_tiff_end_page( &tfdev->tiff, file );
  146.         gs_free( line, raster, 1, "tiff12_print_page" );
  147.     }
  148.  
  149.     return code;
  150. }
  151.  
  152. private int
  153. tiff24_print_page(gx_device_printer *pdev, FILE *file)
  154. {    int code;
  155.  
  156.     /* Write the page directory. */
  157.     code = gdev_tiff_begin_page(pdev, &tfdev->tiff, file,
  158.             (const TIFF_dir_entry *)&dir_rgb_template,
  159.             sizeof(dir_rgb_template) / sizeof(TIFF_dir_entry),
  160.             (const byte *)&val_24_template,
  161.             sizeof(val_24_template));
  162.     if ( code < 0 )
  163.       return code;
  164.  
  165.     /* Write the page data. */
  166.     { int y;
  167.       int raster = gdev_prn_raster(pdev);
  168.       byte *line = (byte *)gs_malloc(raster, 1, "tiff24_print_page");
  169.       byte *row;
  170.  
  171.       if ( line == 0 )
  172.         return_error(gs_error_VMerror);
  173.       for ( y = 0; y < pdev->height; ++y )
  174.         { code = gdev_prn_get_bits(pdev, y, line, &row);
  175.           if ( code < 0 )
  176.         break;
  177.           fwrite((char *)row, raster, 1, file);
  178.         }
  179.       gdev_tiff_end_page(&tfdev->tiff, file);
  180.       gs_free(line, raster, 1, "tiff24_print_page");
  181.     }
  182.  
  183.     return code;
  184. }
  185.  
  186. #undef tfdev
  187.